home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_03_03
/
3n03062b
< prev
next >
Wrap
Text File
|
1992-01-21
|
576b
|
15 lines
Sub Form_Load ()
Screen.MousePointer = 11 ' Hourglass cursor
' Center message Left/Right:
Banner.Left = (Screen.Width - Banner.Width) / 2
' Center message Top/Bottom:
Banner.Top = (Screen.Height - Banner.Height) / 2
End Sub
Sub Timer1_Timer ()
Timer1.Enabled = 0 ' False - Turn off the timer
Load MainForm ' Load form with Visible Property set to False
MainForm.Visible = -1 ' True - Keep it hidden until load is complete
End Sub